*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	height: 100vh;
	overflow: hidden;
	background-image: url(Images/bg.jpg);
	background-size: cover;
	background-position: center;
}

nav{
	background-color: #DC0A4B;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	font-family: Impact;
}

nav ul{
	padding: 10px;
	display: flex;
	list-style-type: none;
	gap: 1rem;
}

nav ul li a{
	border-right: 2px solid white;
	padding-right: 10px;
	text-decoration: none;
	font-size: 1.5rem;
	color: white;
}

nav ul li a:hover{
	text-decoration: underline;
}

#logo{
	letter-spacing: 2px;
	font-size: 2rem;
	color: white;
}

.inner_box{
	width: 50%;
	height: 50%;
	background-color: white;
	opacity: 80%;
	margin: 0 auto;
	margin-top: 40px;
	padding: 2rem;
}

p{
	font-size: 2rem;
}

marquee{
	padding: 15px;

}

.foot{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
}

button{
	padding: 20px;
	border-radius: 10px;
	background-color: black;
	opacity: 90%;
}

button a{
	font-size: 1rem;
	color: white;
	text-decoration: none;
}

button:hover{
	background-color: lime;
	cursor: pointer;
	font-weight: bold;
}

@media (max-width: 680px){
	nav{
		flex-direction: column;
		gap: 3rem;
	}

	nav ul{
		border: 1px solid white;
		padding: 10px;
		order: 1;
	}

	nav ul li a{
		padding-right: 10px;
		border-right: 2px solid white;
		font-size: 1.2rem;
	}

	.inner_box{
		width: 75%;
		height: 40%;
	}

	p{
		font-size: 1rem;
	}
}
